* gtk_theming_engine_lookup_color:
* @engine: a #GtkThemingEngine
* @color_name: color name to lookup
- * @color: (out) (transfer full): Return location for the looked up color
+ * @color: (out): Return location for the looked up color
*
* Looks up and resolves a color name in the current style's color map.
- * The returned color must be freed with gdk_rgba_free().
*
* Returns: %TRUE if @color_name was found and resolved, %FALSE otherwise
**/
gboolean
-gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
- const gchar *color_name,
- GdkRGBA **color)
+gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
+ const gchar *color_name,
+ GdkRGBA *color)
{
GtkThemingEnginePrivate *priv;
void gtk_theming_engine_get_style (GtkThemingEngine *engine,
...);
-gboolean gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
- const gchar *color_name,
- GdkRGBA **color);
+gboolean gtk_theming_engine_lookup_color (GtkThemingEngine *engine,
+ const gchar *color_name,
+ GdkRGBA *color);
G_CONST_RETURN GtkWidgetPath * gtk_theming_engine_get_path (GtkThemingEngine *engine);